.main {
  flex: 1;
  padding: 20px;
}

.project-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.project-img {
  width: 100%;
  margin-top: -30px;
}

.project-dashboard {
  width: 100%;
}

.header-section {
  margin-bottom: 60px;
}

.meta-info {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #666;
}

.meta-info h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.meta-info p {
  margin: 0;
  font-weight: 400;
}

.main-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  line-height: 1.3;
}

.main-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  max-width: 800px;
  line-height: 1.7;
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #333;
  color: white;
}

.btn-primary:hover {
  background-color: #555;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #333;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.btn ion-icon {
  font-size: 20px;
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}

.challenge-section h2,
.approach-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.challenge-section h2::after {
  content: "⚡";
  font-size: 20px;
}

.challenge-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.approach-section ul {
  list-style: none;
  padding: 0;
}

.approach-section li {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.approach-section li::before {
  content: "•";
  color: #333;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Project Sections */
.project-section {
   max-width: 1200px;
  margin: 50px auto;
  padding: 40px 20px;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.project-image {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
}

.webapp-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-description {
  margin-bottom: 40px;
}

.project-description p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
}
.project-description-full {
  margin-bottom: 40px;
}

.project-description-full p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.highlight-container {
  margin-top: 40px;
}

.highlight-container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.key-highlights h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #555;
  line-height: 1.2;
}

.highlight-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: green;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 16px;
  }

  .meta-info {
    flex-direction: column;
    gap: 20px;
  }

  .main-content h1 {
    font-size: 28px;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
  }

  .button-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: fit-content;
  }

  .project-section {
    margin-top: 60px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .webapp-image {
    padding: 20px;
  }
}
